home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
scope
/
151-175
/
scopedisk168
/
asmmacros
/
am_02
/
datestamp.i
< prev
next >
Wrap
Text File
|
1995-03-19
|
709b
|
32 lines
NOLIST
DateStamp MACRO ; 14 Sept 88
*------------------------------; Start of DateStamp macro.
NOLIST
IFEQ ReEntrant-1
LIST
DefDS Time.ds_Days,1
DefDS Time.ds_Minute,1
DefDS Time.ds_Tick,1
NOLIST
ENDC
IFNE ReEntrant-1
LIST
DS_BSS Time.ds_Days,1,.L
DS_BSS Time.ds_Minute,1,.L
DS_BSS Time.ds_Tick,1,.L
NOLIST
ENDC
LIST
MOVE.L #Time.ds_Days,D1 ; Make D1 point to the date stamp buffer.
NOLIST
IFEQ ReEntrant-1
LIST
ADD.L A5,D1
NOLIST
ENDC
LIST
CallLib DateStamp,dos ; Call DateStamp.
*------------------------------; End of DateStamp macro.
ENDM
LIST